*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
   /* background: linear-gradient( #0c288e, #c114be);*/
    background-attachment: fixed;
    background-repeat: no-repeat;
    background: #202c55;
}
header{
    background: #202c55;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: aliceblue;
    padding: 10px 10px 10px;
    width: 100%;
    height: 5px;
}

header .nav{
    display: flex;
    flex-direction: row;
    color: white;
}

header .nav li{
    padding-right: 10px;
    list-style: none;
    color:rgb(168, 78, 23);
}

header .nav li a{
    text-decoration: none;
    color: rgb(168, 78, 23);
}


header .nav li a:active,
header .nav li a:hover{
    background:linear-gradient( #0c288e, #c114be);
    color:cornsilk;
}
/*main style section */
main{
    width: 100%;
    color: white;  
}
.content{
    background: linear-gradient( #0c288e, #c114be); 
}
.description{
    margin-left: 10px;
    margin-top: 30px;
}
.description p{
    padding-top: 20px;
    width: 60%;
}
.socialmedia{
    margin-top: 50px;
    margin-bottom: 40px;
    margin-left: 15px;
    display: flex;
    flex-direction: row;
}
.socialmedia .icon a img{
    height: 40px;
    width: 40px;
    padding-right: 15px;

}
.feedsbar{
    display: flex;
    flex-direction: row;
}

.feedsbar li{
    list-style: none;
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 30px;
    font-weight: 500;
    font-size: 20px;   
}

.feedsbar li a{
    text-decoration: none;
    color:rgb(168, 78, 23);
    font-family: monospace;
}
.pics{
    display: flex;
    flex-direction: row;
    overflow-x: scroll;
}
.pics img{
    height: 150px;
    width: 150px;
    border-radius: 5px;
    margin:10px 10px 10px 10px ;
}

.media{
    width: 100%;
    background-color: #202c55;
}


.feeds{
    height: 100vh;
    width: 90%;
    margin: 10px 10px 10px 10px;
    border-radius: 10px;
    display: flex;
    flex-wrap:wrap;
}

.project{
    font-family: monospace;
    color: rgb(172, 41, 224);
    margin: 10px 10px 10px 10px;
    border-radius: 5px;
    width: 300px;
    height: 50px;
    text-align: center;
    background-color: antiquewhite;
    opacity: 50%;
}
/*active links color */

#active{
    color: aliceblue;
}
